home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EuroCD 3
/
EuroCD 3.iso
/
Programming
/
vbcc
/
machines
/
amigappc
/
libsrc
/
AmigaLib
/
FastRand.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1998-06-24
|
125 b
|
10 lines
#include <exec/types.h>
ULONG FastRand(ULONG seed)
{ ULONG a=seed<<1;
if((LONG)seed<=0)
a^=0x1d872b41;
return a;
}